@-webkit-keyframes line-scale {
0%, 100% {
-webkit-transform:scaley(1);
transform:scaley(1)
}
50% {
-webkit-transform:scaley(.4);
transform:scaley(.4)
}
}
@keyframes line-scale {
0%, 100% {
-webkit-transform:scaley(1);
transform:scaley(1)
}
50% {
-webkit-transform:scaley(.4);
transform:scaley(.4)
}
}



.line-scale>div {
	width:2px;
	height:22px;
	display:inline-block
}

.line-scale>div{
	border-radius:2px;
	margin:2px;

	background: rgba(212,0,4,0.8);
}



.line-scale>div:nth-child(1) {
-webkit-animation:line-scale 1s -.4s infinite cubic-bezier(.2, .68, .18, 1.08);
animation:line-scale 1s -.4s infinite cubic-bezier(.2, .68, .18, 1.08)
}
.line-scale>div:nth-child(2) {
-webkit-animation:line-scale 1s -.3s infinite cubic-bezier(.2, .68, .18, 1.08);
animation:line-scale 1s -.3s infinite cubic-bezier(.2, .68, .18, 1.08)
}
.line-scale>div:nth-child(3) {
-webkit-animation:line-scale 1s -.2s infinite cubic-bezier(.2, .68, .18, 1.08);
animation:line-scale 1s -.2s infinite cubic-bezier(.2, .68, .18, 1.08)
}
.line-scale>div:nth-child(4) {
-webkit-animation:line-scale 1s -.1s infinite cubic-bezier(.2, .68, .18, 1.08);
animation:line-scale 1s -.1s infinite cubic-bezier(.2, .68, .18, 1.08)
}
.line-scale>div:nth-child(5) {
-webkit-animation:line-scale 1s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
animation:line-scale 1s 0s infinite cubic-bezier(.2, .68, .18, 1.08)
}
.line-scale>div {
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both
}


.loading {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.65);
	z-index: 999;
}
.loading .loader {
	position: absolute;
	top: 50%;
	left: 50%;
}
.loader-chanage {
	-webkit-transition: all 0.7s ease-out;
	-moz-transition: all 0.7s ease-out;
	-ms-transition: all 0.7s ease-out;
	-o-transition: all 0.7s ease-out;
	transition: all 0.7s ease-out;
	-webkit-transform: scale(1.4);
	-moz-transform: scale(1.4);
	-ms-transform: scale(1.4);
	-o-transform: scale(1.4);
	transform: scale(1.4);
	opacity: 0;
}


